home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / pcl4w13.zip / SELFTEST._W_ < prev    next >
Text File  |  1996-07-14  |  759b  |  35 lines

  1. #
  2. # Watcom makefile for SELFTEST
  3. #
  4. # TO MAKE: wmake -f selftest._W_
  5. #
  6.  
  7. FLAGS = -c -oaxt -d2 -w4 -zW
  8.  
  9. OBJS = selftest.obj about.obj line.obj paint.obj sioerror.obj runtest.obj
  10.  
  11. selftest.exe: $(OBJS) selftest.res selftest.def pcl4w.lib
  12.    wlink @selftest.lnk
  13.    wrc selftest.res
  14.  
  15. selftest.res: $(OBJS) selftest.rc
  16.    wrc -r selftest.rc
  17.  
  18. about.obj: about.c about.h
  19.    wcl $(FLAGS)  about.c
  20.  
  21. selftest.obj: selftest.c selftest.h pcl4w.h
  22.    wcl $(FLAGS)  selftest.c
  23.  
  24. sioerror.obj: sioerror.c sioerror.h pcl4w.h
  25.    wcl $(FLAGS)  sioerror.c
  26.  
  27. paint.obj: paint.c paint.h pcl4w.h
  28.     wcl $(FLAGS)  paint.c
  29.  
  30. line.obj: line.c line.h pcl4w.h
  31.     wcl $(FLAGS)  line.c
  32.  
  33. runtest.obj: runtest.c runtest.h pcl4w.h
  34.     wcl $(FLAGS)  runtest.c
  35.